400 |
How can I change the first visible date in the chart
|
399 |
How can I scroll or ensure that a specified date time is visible in the chart
|
398 |
How can I scroll or ensure that a specified date time is visible to the right side of the chart or control
|
397 |
How can I scroll or ensure that a specified date time is visible
|
396 |
How can I show or hide the the tooltip being shown when the user scrolls the chart
|
395 |
How can I change the format of the tooltip when the user scrolls the chart
|
394 |
How can I hide the chart's scroll bar
|
393 |
How can I specify the first day of the week
|
392 |
How do I change the AM or PM shortcuts in the chart's header
|
391 |
How do I change the name for the months, being displayed in the chart's header
|
390 |
How do I change the name for the week days, being displayed in the chart's header
|
389 |
How do I access a level in the chart's header
|
388 |
How can I change the color for the grid lines between the leves in the chart's header
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutGridLineColor(RGB(255,0,0)); spGantt1->GetChart()->PutLevelCount(2); |
387 |
How can I show or hide the grid lines between the leves in the chart's header
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutGridLineColor(RGB(255,0,0)); EXGANTTLib::IChartPtr var_Chart = spGantt1->GetChart(); var_Chart->PutLevelCount(2); var_Chart->GetLevel(0)->PutDrawTickLines(VARIANT_FALSE); var_Chart->GetLevel(1)->PutDrawTickLines(VARIANT_FALSE); |
386 |
How do I change the foreground color for the chart's header
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetChart()->PutForeColorLevelHeader(RGB(255,0,0)); |
385 |
How do I change the background color for the chart's header
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetChart()->PutBackColorLevelHeader(RGB(255,0,0)); |
384 |
How do I specify the chart's foreground color
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetChart()->PutForeColor(RGB(255,0,0)); |
383 |
How do I specify the chart's background color
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetChart()->PutBackColor(RGB(255,0,0)); |
382 |
How do I put a picture on the center of the chart
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetChart()->PutPicture(IPictureDispPtr(((IDispatch*)(spGantt1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"))))); spGantt1->GetChart()->PutPictureDisplay(EXGANTTLib::MiddleCenter); |
381 |
How do I resize/stretch a picture on the chart's background
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetChart()->PutPicture(IPictureDispPtr(((IDispatch*)(spGantt1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"))))); spGantt1->GetChart()->PutPictureDisplay(EXGANTTLib::Stretch); |
380 |
How do I put a picture on the chart's center right bottom side
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetChart()->PutPicture(IPictureDispPtr(((IDispatch*)(spGantt1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"))))); spGantt1->GetChart()->PutPictureDisplay(EXGANTTLib::LowerRight); |
379 |
How do I put a picture on the chart's center left bottom side
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetChart()->PutPicture(IPictureDispPtr(((IDispatch*)(spGantt1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"))))); spGantt1->GetChart()->PutPictureDisplay(EXGANTTLib::LowerLeft); |
378 |
How do I put a picture on the chart's center top side
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetChart()->PutPicture(IPictureDispPtr(((IDispatch*)(spGantt1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"))))); spGantt1->GetChart()->PutPictureDisplay(EXGANTTLib::UpperCenter); |
377 |
How do I put a picture on the chart's right top corner
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetChart()->PutPicture(IPictureDispPtr(((IDispatch*)(spGantt1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"))))); spGantt1->GetChart()->PutPictureDisplay(EXGANTTLib::UpperRight); |
376 |
How do I put a picture on the chart's left top corner
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetChart()->PutPicture(IPictureDispPtr(((IDispatch*)(spGantt1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"))))); spGantt1->GetChart()->PutPictureDisplay(EXGANTTLib::UpperLeft); |
375 |
How do I put a picture on the chart's background
|
374 |
How to specify the width for the left or side pane
|
373 |
How do I display the header of the chart using multiple levels, lines
|
372 |
How do change the width of the chart's area
|
371 |
How do I show or hide the control's chart area
|
370 |
How do I access the chart's area of the control
|
369 |
How do I change the control's border, using your EBN files
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetVisualAppearance()->Add(1,"c:\\exontrol\\images\\normal.ebn"); spGantt1->PutAppearance(EXGANTTLib::AppearanceEnum(0x1000000)); |
368 |
Can I change the default border of the tooltip, using your EBN files
|
367 |
Can I change the background color for the tooltip
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutToolTipDelay(1); spGantt1->PutToolTipWidth(364); spGantt1->PutBackground(EXGANTTLib::exToolTipBackColor,RGB(255,0,0)); ((EXGANTTLib::IColumnPtr)(spGantt1->GetColumns()->Add(L"tootip")))->PutToolTip(L"this is a tooltip assigned to a column"); |
366 |
Does the tooltip support HTML format
|
365 |
Can I change the forecolor for the tooltip
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutToolTipDelay(1); spGantt1->PutToolTipWidth(364); spGantt1->PutBackground(EXGANTTLib::exToolTipForeColor,RGB(255,0,0)); ((EXGANTTLib::IColumnPtr)(spGantt1->GetColumns()->Add(L"tootip")))->PutToolTip(L"this is a tooltip assigned to a column"); |
364 |
Can I change the foreground color for the tooltip
|
363 |
How can I merge cells
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutDrawGridLines(EXGANTTLib::exAllLines); spGantt1->PutMarkSearchColumn(VARIANT_FALSE); spGantt1->GetColumns()->Add(L"C1"); spGantt1->GetColumns()->Add(L"C2"); spGantt1->GetColumns()->Add(L"C3"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("this cell merges the first two columns"); var_Items->PutCellMerge(h,long(0),long(1)); h = var_Items->AddItem(vtMissing); var_Items->PutCellCaption(h,long(1),"this cell merges the last two columns"); var_Items->PutCellMerge(h,long(1),long(2)); h = var_Items->AddItem("this cell merges the all three columns"); var_Items->PutCellMerge(h,long(0),long(1)); var_Items->PutCellMerge(h,long(0),long(2)); h = var_Items->AddItem("this draws a divider item"); var_Items->PutItemDivider(h,0); |
362 |
How can I merge cells
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutMarkSearchColumn(VARIANT_FALSE); spGantt1->PutTreeColumnIndex(-1); spGantt1->GetColumns()->Add(L"C1"); spGantt1->GetColumns()->Add(L"C2"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Cell 1"); var_Items->PutCellCaption(h,long(1),"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines."); var_Items->PutCellSingleLine(h,long(1),EXGANTTLib::exCaptionWordWrap); h = var_Items->AddItem("This is bit of text merges all cells in the item"); var_Items->PutItemDivider(h,0); var_Items->PutCellHAlignment(h,long(0),EXGANTTLib::CenterAlignment); |
361 |
How can I specify the width for a splited cell
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutDrawGridLines(EXGANTTLib::exRowLines); spGantt1->GetColumns()->Add(L"Single Column"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Split 1"); _variant_t s = var_Items->GetSplitCell(h,long(0)); var_Items->PutCellWidth(vtMissing,s,64); var_Items->PutCellCaption(vtMissing,s,"Split 2"); _variant_t s1 = var_Items->GetSplitCell(vtMissing,s); var_Items->PutCellCaption(vtMissing,s1,"Split 3"); var_Items->PutCellWidth(vtMissing,s1,64); |
360 |
How can I split a cell in three parts
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutDrawGridLines(EXGANTTLib::exRowLines); spGantt1->GetColumns()->Add(L"Single Column"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Split 1"); _variant_t s = var_Items->GetSplitCell(h,long(0)); var_Items->PutCellCaption(vtMissing,s,"Split 2"); _variant_t s1 = var_Items->GetSplitCell(vtMissing,s); var_Items->PutCellCaption(vtMissing,s1,"Split 3"); |
359 |
How can I add a button aligned to right
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spGantt1->GetColumns()->Add(L"Single Column"); spGantt1->PutShowFocusRect(VARIANT_FALSE); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); var_Items->PutItemDivider(var_Items->AddItem("This is a bit of text being displayed on the entire item"),0); _variant_t s = var_Items->GetSplitCell(var_Items->AddItem("Split Cell 1.1"),long(0)); var_Items->PutCellCaption(vtMissing,s,"Split Cell <img>1</img>"); var_Items->PutCellCaptionFormat(vtMissing,s,EXGANTTLib::exHTML); var_Items->PutCellHAlignment(vtMissing,s,EXGANTTLib::CenterAlignment); var_Items->PutCellHasButton(vtMissing,s,VARIANT_TRUE); var_Items->PutCellWidth(vtMissing,s,84); |
358 |
How can I split a cell
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutDrawGridLines(EXGANTTLib::exRowLines); spGantt1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spGantt1->GetVisualAppearance()->Add(1,"c:\\exontrol\\images\\normal.ebn"); spGantt1->GetColumns()->Add(L"Single Column"); spGantt1->PutShowFocusRect(VARIANT_FALSE); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); _variant_t s = var_Items->GetSplitCell(var_Items->AddItem("Split Cell 1.1"),long(0)); var_Items->PutCellCaption(vtMissing,s,"Split Cell <img>1</img>"); var_Items->PutCellCaptionFormat(vtMissing,s,EXGANTTLib::exHTML); var_Items->PutCellHAlignment(vtMissing,s,EXGANTTLib::CenterAlignment); var_Items->PutCellBackColor(vtMissing,s,0x1000000); var_Items->PutCellWidth(vtMissing,s,84); |
357 |
Can I select an item giving its general position
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Root 1"); var_Items->InsertItem(h,vtMissing,"Child 1"); var_Items->InsertItem(h,vtMissing,"Child 2"); var_Items->PutExpandItem(h,VARIANT_TRUE); var_Items->PutSelectPos(long(1)); |
356 |
How can I change the color for separator / dividers items
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutGridLineColor(RGB(255,0,0)); spGantt1->PutMarkSearchColumn(VARIANT_FALSE); spGantt1->PutTreeColumnIndex(-1); spGantt1->PutScrollBySingleLine(VARIANT_FALSE); spGantt1->GetColumns()->Add(L"C1"); spGantt1->GetColumns()->Add(L"C2"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Cell 1"); var_Items->PutCellCaption(h,long(1),"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines."); var_Items->PutCellSingleLine(h,long(1),EXGANTTLib::exCaptionWordWrap); h = var_Items->AddItem(vtMissing); var_Items->PutItemDivider(h,0); var_Items->PutItemDividerLine(h,EXGANTTLib::DoubleDotLine); var_Items->PutItemDividerLineAlignment(h,EXGANTTLib::DividerCenter); var_Items->PutItemHeight(h,6); var_Items->PutSelectableItem(h,VARIANT_FALSE); h = var_Items->AddItem("Cell 2"); var_Items->PutCellCaption(h,long(1),"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines."); var_Items->PutCellSingleLine(h,long(1),EXGANTTLib::exCaptionWordWrap); |
355 |
How can I add separator - dividers items
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutMarkSearchColumn(VARIANT_FALSE); spGantt1->PutTreeColumnIndex(-1); spGantt1->PutScrollBySingleLine(VARIANT_FALSE); spGantt1->GetColumns()->Add(L"C1"); spGantt1->GetColumns()->Add(L"C2"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Cell 1"); var_Items->PutCellCaption(h,long(1),"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines."); var_Items->PutCellSingleLine(h,long(1),EXGANTTLib::exCaptionWordWrap); h = var_Items->AddItem(vtMissing); var_Items->PutItemDivider(h,0); var_Items->PutItemDividerLine(h,EXGANTTLib::DoubleDotLine); var_Items->PutItemDividerLineAlignment(h,EXGANTTLib::DividerCenter); var_Items->PutItemHeight(h,6); var_Items->PutSelectableItem(h,VARIANT_FALSE); h = var_Items->AddItem("Cell 2"); var_Items->PutCellCaption(h,long(1),"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines."); var_Items->PutCellSingleLine(h,long(1),EXGANTTLib::exCaptionWordWrap); |
354 |
Can I change the style of the line being displayed by a divider item
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutMarkSearchColumn(VARIANT_FALSE); spGantt1->PutTreeColumnIndex(-1); spGantt1->PutScrollBySingleLine(VARIANT_FALSE); spGantt1->GetColumns()->Add(L"C1"); spGantt1->GetColumns()->Add(L"C2"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Cell 1"); var_Items->PutCellCaption(h,long(1),"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines."); var_Items->PutCellSingleLine(h,long(1),EXGANTTLib::exCaptionWordWrap); h = var_Items->AddItem("This is bit of text that's displayed on the entire item, divider."); var_Items->PutItemDivider(h,0); var_Items->PutItemDividerLine(h,EXGANTTLib::DoubleDotLine); var_Items->PutCellHAlignment(h,long(0),EXGANTTLib::CenterAlignment); var_Items->PutItemHeight(h,24); |
353 |
Can I remove the line being displayed by a divider item
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutMarkSearchColumn(VARIANT_FALSE); spGantt1->PutTreeColumnIndex(-1); spGantt1->GetColumns()->Add(L"C1"); spGantt1->GetColumns()->Add(L"C2"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Cell 1"); var_Items->PutCellCaption(h,long(1),"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines."); var_Items->PutCellSingleLine(h,long(1),EXGANTTLib::exCaptionWordWrap); h = var_Items->AddItem("This is bit of text that's displayed on the entire item, divider."); var_Items->PutItemDivider(h,0); var_Items->PutItemDividerLine(h,EXGANTTLib::EmptyLine); var_Items->PutCellHAlignment(h,long(0),EXGANTTLib::CenterAlignment); |
352 |
How can I display a divider item, merging all cells
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutMarkSearchColumn(VARIANT_FALSE); spGantt1->PutTreeColumnIndex(-1); spGantt1->GetColumns()->Add(L"C1"); spGantt1->GetColumns()->Add(L"C2"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Cell 1"); var_Items->PutCellCaption(h,long(1),"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines."); var_Items->PutCellSingleLine(h,long(1),EXGANTTLib::exCaptionWordWrap); h = var_Items->AddItem("This is bit of text that's displayed on the entire item, divider."); var_Items->PutItemDivider(h,0); var_Items->PutCellHAlignment(h,long(0),EXGANTTLib::CenterAlignment); |
351 |
How can I fix or lock items
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); var_Items->PutLockedItemCount(EXGANTTLib::TopAlignment,1); var_Items->PutCellCaption(var_Items->GetLockedItem(EXGANTTLib::TopAlignment,0),long(0),"This is a locked item, fixed to the top side of the control."); var_Items->PutItemBackColor(var_Items->GetLockedItem(EXGANTTLib::TopAlignment,0),RGB(196,196,186)); var_Items->PutLockedItemCount(EXGANTTLib::BottomAlignment,2); var_Items->PutCellCaption(var_Items->GetLockedItem(EXGANTTLib::BottomAlignment,0),long(0),"This is a locked item, fixed to the top side of the control."); var_Items->PutItemBackColor(var_Items->GetLockedItem(EXGANTTLib::BottomAlignment,0),RGB(196,196,186)); var_Items->PutCellCaption(var_Items->GetLockedItem(EXGANTTLib::BottomAlignment,1),long(0),"This is a locked item, fixed to the top side of the control."); var_Items->PutItemBackColor(var_Items->GetLockedItem(EXGANTTLib::BottomAlignment,1),RGB(186,186,186)); |
350 |
How can I fix or lock an item on the bottom side of the control
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); var_Items->PutLockedItemCount(EXGANTTLib::BottomAlignment,1); var_Items->PutCellCaption(var_Items->GetLockedItem(EXGANTTLib::BottomAlignment,0),long(0),"This is a locked item, fixed to the bottom side of the control."); long h = var_Items->AddItem("Root 1"); var_Items->InsertItem(h,vtMissing,"Child 1"); var_Items->InsertItem(h,vtMissing,"Child 2"); var_Items->PutExpandItem(h,VARIANT_TRUE); |
349 |
How can I fix or lock an item on the top of the control
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); var_Items->PutLockedItemCount(EXGANTTLib::TopAlignment,1); var_Items->PutCellCaption(var_Items->GetLockedItem(EXGANTTLib::TopAlignment,0),long(0),"This is a locked item, fixed to the top side of the control."); long h = var_Items->AddItem("Root 1"); var_Items->InsertItem(h,vtMissing,"Child 1"); var_Items->InsertItem(h,vtMissing,"Child 2"); var_Items->PutExpandItem(h,VARIANT_TRUE); |
348 |
Is there any function to limit the height of the items when I display it using multiple lines
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutScrollBySingleLine(VARIANT_TRUE); spGantt1->GetColumns()->Add(L"C1"); spGantt1->GetColumns()->Add(L"C2"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Cell 1"); var_Items->PutCellCaption(h,long(1),"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines."); var_Items->PutCellSingleLine(h,long(1),EXGANTTLib::exCaptionWordWrap); var_Items->PutItemMaxHeight(h,48); |
347 |
Why I cannot center my cells in the column
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutTreeColumnIndex(-1); spGantt1->PutDrawGridLines(EXGANTTLib::exRowLines); ((EXGANTTLib::IColumnPtr)(spGantt1->GetColumns()->Add(L"Default")))->PutAlignment(EXGANTTLib::CenterAlignment); spGantt1->GetItems()->AddItem("item 1"); spGantt1->GetItems()->AddItem("item 2"); spGantt1->GetItems()->AddItem("item 3"); |
346 |
How can I align the cell to the left, center or to the right
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutTreeColumnIndex(-1); spGantt1->PutDrawGridLines(EXGANTTLib::exRowLines); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); var_Items->PutCellHAlignment(var_Items->AddItem("left"),long(0),EXGANTTLib::LeftAlignment); var_Items->PutCellHAlignment(var_Items->AddItem("center"),long(0),EXGANTTLib::CenterAlignment); var_Items->PutCellHAlignment(var_Items->AddItem("right"),long(0),EXGANTTLib::RightAlignment); |
345 |
How do I apply HTML format to a cell
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutTreeColumnIndex(-1); spGantt1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spGantt1->PutHTMLPicture(L"p1","c:\\exontrol\\images\\zipdisk.gif"); spGantt1->PutHTMLPicture(L"p2","c:\\exontrol\\images\\auction.gif"); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("The following item shows some of the HTML format supported:"); var_Items->PutCellHAlignment(h,long(0),EXGANTTLib::CenterAlignment); h = var_Items->AddItem(_bstr_t("<br>text icons <img>1</img>, <img>2</img>, ... pictures <img>p1</img>, <img>p2</img> <br><br>text <b>bold</b>, <i>italic</i>, <") + "u>underline</u>, <s>strikeout</s>, ...<br><dotline>and so on...<br> <a>anchor</a> or <a2>hyperlink</a><br><fgcolor=FF0000>fgcolo" + "r</fgcolor> or <bgcolor=00FF00>bgcolor</bgcolor> "); var_Items->PutCellCaptionFormat(h,long(0),EXGANTTLib::exHTML); var_Items->PutCellSingleLine(h,long(0),EXGANTTLib::exCaptionWordWrap); |
344 |
How can I change the font for a cell
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"Default"); spGantt1->GetItems()->AddItem("std font"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); var_Items->PutCellCaptionFormat(var_Items->AddItem("this <font tahoma;12>is a bit of text with</font> a different font"),long(0),EXGANTTLib::exHTML); |
343 |
How can I change the font for a cell
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"Default"); spGantt1->GetItems()->AddItem("default font"); /* Includes the definition for CreateObject function like follows: #include <comdef.h> IUnknownPtr CreateObject( BSTR Object ) { IUnknownPtr spResult; spResult.CreateInstance( Object ); return spResult; }; */ /* Copy and paste the following directives to your header file as it defines the namespace 'stdole' for the library: 'OLE Automation' #import <stdole2.tlb> */ stdole::FontPtr f = ::CreateObject(L"StdFont"); f->PutName(L"Tahoma"); f->PutSize(_variant_t(long(12))); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); var_Items->PutCellFont(var_Items->AddItem("new font"),long(0),IFontDispPtr(((stdole::FontPtr)(f)))); |
342 |
How can I change the font for entire item
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"Default"); spGantt1->GetItems()->AddItem("default font"); /* Includes the definition for CreateObject function like follows: #include <comdef.h> IUnknownPtr CreateObject( BSTR Object ) { IUnknownPtr spResult; spResult.CreateInstance( Object ); return spResult; }; */ /* Copy and paste the following directives to your header file as it defines the namespace 'stdole' for the library: 'OLE Automation' #import <stdole2.tlb> */ stdole::FontPtr f = ::CreateObject(L"StdFont"); f->PutName(L"Tahoma"); f->PutSize(_variant_t(long(12))); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); var_Items->PutItemFont(var_Items->AddItem("new font"),IFontDispPtr(((stdole::FontPtr)(f)))); |
341 |
How do I vertically align a cell
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutDrawGridLines(EXGANTTLib::exRowLines); ((EXGANTTLib::IColumnPtr)(spGantt1->GetColumns()->Add(L"MultipleLine")))->PutDef(EXGANTTLib::exCellSingleLine,VARIANT_FALSE); spGantt1->GetColumns()->Add(L"VAlign"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("This is a bit of long text that should break the line"); var_Items->PutCellCaption(h,long(1),"top"); var_Items->PutCellVAlignment(h,long(1),EXGANTTLib::TopAlignment); h = var_Items->AddItem("This is a bit of long text that should break the line"); var_Items->PutCellCaption(h,long(1),"middle"); var_Items->PutCellVAlignment(h,long(1),EXGANTTLib::MiddleAlignment); h = var_Items->AddItem("This is a bit of long text that should break the line"); var_Items->PutCellCaption(h,long(1),"bottom"); var_Items->PutCellVAlignment(h,long(1),EXGANTTLib::BottomAlignment); |
340 |
How can I change the position of an item
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); var_Items->AddItem("Item 1"); var_Items->AddItem("Item 2"); var_Items->PutItemPosition(var_Items->AddItem("Item 3"),0); |
339 |
How do I find an item based on a path
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Root 1"); var_Items->InsertItem(h,vtMissing,"Child 1"); var_Items->PutItemData(var_Items->InsertItem(h,vtMissing,"Child 2"),long(1234)); var_Items->PutExpandItem(h,VARIANT_TRUE); var_Items->PutItemBold(var_Items->GetFindPath(L"Root 1\\Child 1"),VARIANT_TRUE); |
338 |
How do I find an item based on my extra data
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Root 1"); var_Items->InsertItem(h,vtMissing,"Child 1"); var_Items->PutItemData(var_Items->InsertItem(h,vtMissing,"Child 2"),long(1234)); var_Items->PutExpandItem(h,VARIANT_TRUE); var_Items->PutItemBold(var_Items->GetFindItemData(long(1234),vtMissing),VARIANT_TRUE); |
337 |
How do I find an item
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Root 1"); var_Items->InsertItem(h,vtMissing,"Child 1"); var_Items->InsertItem(h,vtMissing,"Child 2"); var_Items->PutExpandItem(h,VARIANT_TRUE); var_Items->PutItemBold(var_Items->GetFindItem("Child 2",long(0),vtMissing),VARIANT_TRUE); |
336 |
How can I insert a hyperlink or an anchor element
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"Column"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); var_Items->PutCellCaptionFormat(var_Items->AddItem("Just an <a1>anchor</a> element ..."),long(0),EXGANTTLib::exHTML); EXGANTTLib::IItemsPtr var_Items1 = spGantt1->GetItems(); var_Items1->PutCellCaptionFormat(var_Items1->AddItem("Just another <a2>anchor</a> element ..."),long(0),EXGANTTLib::exHTML); |
335 |
How do I find the index of the item based on its handle
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Root 1"); var_Items->InsertItem(h,vtMissing,"Child 1"); var_Items->InsertItem(h,vtMissing,"Child 2"); var_Items->PutExpandItem(h,VARIANT_TRUE); var_Items->PutItemBold(var_Items->GetItemByIndex(var_Items->GetItemToIndex(h)),VARIANT_TRUE); |
334 |
How do I find the handle of the item based on its index
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Root 1"); var_Items->InsertItem(h,vtMissing,"Child 1"); var_Items->InsertItem(h,vtMissing,"Child 2"); var_Items->PutExpandItem(h,VARIANT_TRUE); var_Items->PutItemBold(var_Items->GetItemByIndex(1),VARIANT_TRUE); |
333 |
How can I find the cell being clicked in a radio group
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutMarkSearchColumn(VARIANT_FALSE); spGantt1->PutSelBackColor(RGB(255,255,128)); spGantt1->PutSelForeColor(RGB(0,0,0)); spGantt1->GetColumns()->Add(L"C1"); spGantt1->GetColumns()->Add(L"C2"); spGantt1->GetColumns()->Add(L"C3"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Cell 1"); var_Items->PutCellCaption(h,long(1),"Radio 1"); var_Items->PutCellHasRadioButton(h,long(1),VARIANT_TRUE); var_Items->PutCellRadioGroup(h,long(1),1234); var_Items->PutCellCaption(h,long(2),"Radio 2"); var_Items->PutCellHasRadioButton(h,long(2),VARIANT_TRUE); var_Items->PutCellRadioGroup(h,long(2),1234); var_Items->PutCellState(h,long(1),1); var_Items->PutCellBold(vtMissing,var_Items->GetCellChecked(1234),VARIANT_TRUE); |
332 |
Can I add a +/- ( expand / collapse ) buttons to each item, so I can load the child items later
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutLinesAtRoot(EXGANTTLib::exLinesAtRoot); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); var_Items->PutItemHasChildren(var_Items->AddItem("parent item with no child items"),VARIANT_TRUE); var_Items->AddItem("next item"); |
331 |
Can I let the user to resize at runtime the specified item
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutScrollBySingleLine(VARIANT_TRUE); spGantt1->PutDrawGridLines(EXGANTTLib::exRowLines); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); var_Items->PutItemAllowSizing(var_Items->AddItem("resizable item"),VARIANT_TRUE); var_Items->AddItem("not resizable item"); |
330 |
How can I change the size ( width, height ) of the picture
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Root 1"); var_Items->PutCellPicture(h,long(0),((IDispatch*)(spGantt1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)")))); var_Items->PutCellPictureWidth(h,long(0),24); var_Items->PutCellPictureHeight(h,long(0),24); var_Items->PutItemHeight(h,32); h = var_Items->AddItem("Root 2"); var_Items->PutCellPicture(h,long(0),((IDispatch*)(spGantt1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)")))); var_Items->PutItemHeight(h,48); |
329 |
How can I find the number or the count of selected items
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutSingleSel(VARIANT_FALSE); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Root 1"); var_Items->InsertItem(h,vtMissing,"Child 1"); var_Items->InsertItem(h,vtMissing,"Child 2"); var_Items->PutExpandItem(h,VARIANT_TRUE); var_Items->PutSelectItem(var_Items->GetItemChild(h),VARIANT_TRUE); var_Items->PutSelectItem(var_Items->GetNextSiblingItem(var_Items->GetItemChild(h)),VARIANT_TRUE); var_Items->AddItem(var_Items->GetSelectCount()); |
328 |
How do I unselect an item
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Root 1"); var_Items->InsertItem(h,vtMissing,"Child 1"); var_Items->InsertItem(h,vtMissing,"Child 2"); var_Items->PutExpandItem(h,VARIANT_TRUE); var_Items->PutSelectItem(h,VARIANT_FALSE); |
327 |
How do I find the selected item
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Root 1"); var_Items->InsertItem(h,vtMissing,"Child 1"); var_Items->InsertItem(h,vtMissing,"Child 2"); var_Items->PutExpandItem(h,VARIANT_TRUE); var_Items->PutSelectItem(h,VARIANT_TRUE); var_Items->PutItemBold(var_Items->GetSelectedItem(0),VARIANT_TRUE); |
326 |
How do I un select all items
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutSingleSel(VARIANT_FALSE); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Root 1"); var_Items->InsertItem(h,vtMissing,"Child 1"); var_Items->InsertItem(h,vtMissing,"Child 2"); var_Items->PutExpandItem(h,VARIANT_TRUE); var_Items->UnselectAll(); |
325 |
How do I select multiple items
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutSingleSel(VARIANT_FALSE); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Root 1"); var_Items->InsertItem(h,vtMissing,"Child 1"); var_Items->InsertItem(h,vtMissing,"Child 2"); var_Items->PutExpandItem(h,VARIANT_TRUE); var_Items->PutSelectItem(var_Items->GetItemChild(h),VARIANT_TRUE); var_Items->PutSelectItem(var_Items->GetNextSiblingItem(var_Items->GetItemChild(h)),VARIANT_TRUE); |
324 |
How do I select all items
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutSingleSel(VARIANT_FALSE); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Root 1"); var_Items->InsertItem(h,vtMissing,"Child 1"); var_Items->InsertItem(h,vtMissing,"Child 2"); var_Items->PutExpandItem(h,VARIANT_TRUE); var_Items->SelectAll(); |
323 |
How do I select an item
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Root 1"); var_Items->InsertItem(h,vtMissing,"Child 1"); var_Items->InsertItem(h,vtMissing,"Child 2"); var_Items->PutExpandItem(h,VARIANT_TRUE); var_Items->PutSelectItem(h,VARIANT_TRUE); |
322 |
Can I display a button with some picture or icon inside
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutHTMLPicture(L"p1","c:\\exontrol\\images\\zipdisk.gif"); spGantt1->GetColumns()->Add(L"C1"); spGantt1->GetColumns()->Add(L"C2"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Cell 1"); var_Items->PutCellCaption(h,long(1)," Button <img>p1</img> "); var_Items->PutCellCaptionFormat(h,long(1),EXGANTTLib::exHTML); var_Items->PutCellHAlignment(h,long(1),EXGANTTLib::RightAlignment); var_Items->PutCellHasButton(h,long(1),VARIANT_TRUE); var_Items->PutCellButtonAutoWidth(h,long(1),VARIANT_TRUE); var_Items->PutItemHeight(h,48); |
321 |
Can I display a button with some picture or icon inside
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spGantt1->GetColumns()->Add(L"C1"); spGantt1->GetColumns()->Add(L"C2"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Cell 1"); var_Items->PutCellCaption(h,long(1)," Button <img>1</img> "); var_Items->PutCellCaptionFormat(h,long(1),EXGANTTLib::exHTML); var_Items->PutCellHAlignment(h,long(1),EXGANTTLib::RightAlignment); var_Items->PutCellHasButton(h,long(1),VARIANT_TRUE); var_Items->PutCellButtonAutoWidth(h,long(1),VARIANT_TRUE); |
320 |
Can I display a button with some icon inside
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spGantt1->GetColumns()->Add(L"C1"); spGantt1->GetColumns()->Add(L"C2"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Cell 1"); var_Items->PutCellCaption(h,long(1)," <img>1</img> "); var_Items->PutCellCaptionFormat(h,long(1),EXGANTTLib::exHTML); var_Items->PutCellHAlignment(h,long(1),EXGANTTLib::RightAlignment); var_Items->PutCellHasButton(h,long(1),VARIANT_TRUE); var_Items->PutCellButtonAutoWidth(h,long(1),VARIANT_TRUE); |
319 |
How can I assign multiple icon/picture to a cell
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutHTMLPicture(L"p1","c:\\exontrol\\images\\zipdisk.gif"); spGantt1->PutHTMLPicture(L"p2","c:\\exontrol\\images\\auction.gif"); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("text <img>p1</img> another picture <img>p2</img> and so on"); var_Items->PutCellCaptionFormat(h,long(0),EXGANTTLib::exHTML); var_Items->PutCellPicture(h,long(0),((IDispatch*)(spGantt1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\colorize.gif`)")))); var_Items->PutItemHeight(h,48); var_Items->AddItem("Root 2"); |
318 |
How can I assign an icon/picture to a cell
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Root 1"); var_Items->PutCellPicture(h,long(0),((IDispatch*)(spGantt1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)")))); var_Items->PutItemHeight(h,48); var_Items->AddItem("Root 2"); |
317 |
How can I assign multiple icons/pictures to a cell
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Root <img>1</img> 1, <img>2</img>, ... and so on "); var_Items->PutCellCaptionFormat(h,long(0),EXGANTTLib::exHTML); |
316 |
How can I assign multiple icons/pictures to a cell
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Root 1"); var_Items->PutCellImages(h,long(0),"1,2,3"); |
315 |
How can I assign an icon/picture to a cell
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Root 1"); var_Items->PutCellImage(h,long(0),1); var_Items->PutCellImage(var_Items->InsertItem(h,vtMissing,"Child 1"),long(0),2); var_Items->PutCellImage(var_Items->InsertItem(h,vtMissing,"Child 2"),long(0),3); var_Items->PutExpandItem(h,VARIANT_TRUE); |
314 |
How can I get the handle of an item based on the handle of the cell
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"Default"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Root 1"); var_Items->InsertItem(h,vtMissing,"Child 1"); var_Items->InsertItem(h,vtMissing,"Child 2"); var_Items->PutExpandItem(h,VARIANT_TRUE); var_Items->PutItemBold(var_Items->GetCellItem(var_Items->GetItemCell(h,long(0))),VARIANT_TRUE); |
313 |
How can I display a button inside the item or cell
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"C1"); spGantt1->GetColumns()->Add(L"C2"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Cell 1"); var_Items->PutCellCaption(h,long(1)," Button 1 "); var_Items->PutCellHAlignment(h,long(1),EXGANTTLib::RightAlignment); var_Items->PutCellHasButton(h,long(1),VARIANT_TRUE); var_Items->PutCellButtonAutoWidth(h,long(1),VARIANT_TRUE); h = var_Items->AddItem("Cell 2"); var_Items->PutCellCaption(h,long(1)," Button 2 "); var_Items->PutCellHAlignment(h,long(1),EXGANTTLib::CenterAlignment); var_Items->PutCellHasButton(h,long(1),VARIANT_TRUE); |
312 |
How can I change the state of a radio button
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutMarkSearchColumn(VARIANT_FALSE); spGantt1->PutSelBackColor(RGB(255,255,128)); spGantt1->PutSelForeColor(RGB(0,0,0)); spGantt1->GetColumns()->Add(L"C1"); spGantt1->GetColumns()->Add(L"C2"); spGantt1->GetColumns()->Add(L"C3"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Cell 1"); var_Items->PutCellCaption(h,long(1),"Radio 1"); var_Items->PutCellHasRadioButton(h,long(1),VARIANT_TRUE); var_Items->PutCellRadioGroup(h,long(1),1234); var_Items->PutCellCaption(h,long(2),"Radio 2"); var_Items->PutCellHasRadioButton(h,long(2),VARIANT_TRUE); var_Items->PutCellRadioGroup(h,long(2),1234); var_Items->PutCellState(h,long(1),1); |
311 |
How can I assign a radio button to a cell
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutMarkSearchColumn(VARIANT_FALSE); spGantt1->PutSelBackColor(RGB(255,255,128)); spGantt1->PutSelForeColor(RGB(0,0,0)); spGantt1->GetColumns()->Add(L"C1"); spGantt1->GetColumns()->Add(L"C2"); spGantt1->GetColumns()->Add(L"C3"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Cell 1"); var_Items->PutCellCaption(h,long(1),"Radio 1"); var_Items->PutCellHasRadioButton(h,long(1),VARIANT_TRUE); var_Items->PutCellRadioGroup(h,long(1),1234); var_Items->PutCellCaption(h,long(2),"Radio 2"); var_Items->PutCellHasRadioButton(h,long(2),VARIANT_TRUE); var_Items->PutCellRadioGroup(h,long(2),1234); var_Items->PutCellState(h,long(1),1); |
310 |
How can I change the state of a checkbox
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"C1"); spGantt1->GetColumns()->Add(L"C2"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Cell 1"); var_Items->PutCellCaption(h,long(1),"Check Box"); var_Items->PutCellHasCheckBox(h,long(1),VARIANT_TRUE); var_Items->PutCellState(h,long(1),1); |
309 |
How can I assign a checkbox to a cell
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"C1"); spGantt1->GetColumns()->Add(L"C2"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Cell 1"); var_Items->PutCellCaption(h,long(1),"Check Box"); var_Items->PutCellHasCheckBox(h,long(1),VARIANT_TRUE); |
308 |
How can I display an item or a cell on multiple lines
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->PutScrollBySingleLine(VARIANT_TRUE); spGantt1->GetColumns()->Add(L"C1"); spGantt1->GetColumns()->Add(L"C2"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Cell 1"); var_Items->PutCellCaption(h,long(1),"This is bit of text that's shown on multiple lines"); var_Items->PutCellSingleLine(h,long(1),EXGANTTLib::exCaptionWordWrap); |
307 |
How can I assign a tooltip to a cell
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"C1"); spGantt1->GetColumns()->Add(L"C2"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Cell 1"); var_Items->PutCellCaption(h,long(1),"tooltip"); var_Items->PutCellToolTip(h,long(1),L"This is bit of text that's shown when the user hovers the cell"); |
306 |
How can I associate an extra data to a cell
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"C1"); spGantt1->GetColumns()->Add(L"C2"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Cell 1"); var_Items->PutCellCaption(h,long(1),"Cell 2"); var_Items->PutCellData(h,long(1),"your extra data"); |
305 |
How do I enable or disable a cell
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"C1"); spGantt1->GetColumns()->Add(L"C2"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Cell 1"); var_Items->PutCellCaption(h,long(1),"Cell 2"); var_Items->PutCellEnabled(h,long(1),VARIANT_FALSE); |
304 |
How do I change the cell's foreground color
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"C1"); spGantt1->GetColumns()->Add(L"C2"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Cell 1"); var_Items->PutCellCaption(h,long(1),"Cell 2"); var_Items->PutCellForeColor(h,long(1),RGB(255,0,0)); |
303 |
How do I change the visual effect for the cell, using your EBN files
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetVisualAppearance()->Add(1,"c:\\exontrol\\images\\normal.ebn"); spGantt1->GetColumns()->Add(L"C1"); spGantt1->GetColumns()->Add(L"C2"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Cell 1"); var_Items->PutCellCaption(h,long(1),"Cell 2"); var_Items->PutCellBackColor(h,long(1),0x1000000); |
302 |
How do I change the cell's background color
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"C1"); spGantt1->GetColumns()->Add(L"C2"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); long h = var_Items->AddItem("Cell 1"); var_Items->PutCellCaption(h,long(1),"Cell 2"); var_Items->PutCellBackColor(h,long(1),RGB(255,0,0)); |
301 |
How do I change the caption or value for a particular cell
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGANTTLib' for the library: 'ExGantt 1.0 Control Library' #import <ExGantt.dll> using namespace EXGANTTLib; */ EXGANTTLib::IGanttPtr spGantt1 = GetDlgItem(IDC_GANTT1)->GetControlUnknown(); spGantt1->GetColumns()->Add(L"C1"); spGantt1->GetColumns()->Add(L"C2"); EXGANTTLib::IItemsPtr var_Items = spGantt1->GetItems(); var_Items->PutCellCaption(var_Items->AddItem("Cell 1"),long(1),"Cell 2"); |